home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / mail / pine3.96.tar.gz / pine3.96.tar / pine3.96 / pine / osdep / fgetpos < prev    next >
Text File  |  1993-07-21  |  452b  |  23 lines

  1. /*----------------------------------------------------------------------
  2.    This is just a call to the ANSI C fgetpos function.
  3.   ----*/
  4. fget_pos(stream, ptr)
  5. FILE *stream;
  6. fpos_t *ptr;
  7. {
  8.     return(fgetpos(stream, ptr));
  9. }
  10.  
  11.  
  12. /*----------------------------------------------------------------------
  13.    This is just a call to the ANSI C fsetpos function.
  14.   ----*/
  15. fset_pos(stream, ptr)
  16. FILE *stream;
  17. fpos_t *ptr;
  18. {
  19.     return(fsetpos(stream, ptr));
  20. }
  21.  
  22.  
  23.